home *** CD-ROM | disk | FTP | other *** search
AmigaBASIC Source Code | 1986-10-09 | 1.4 KB | 21 lines | [MSBC/MSBB] |
- PRINT " This is a BASIC program which demonstrates MS BASIC Runtime (b)."
- PRINT "The purpose of Runtime BASIC is to let you freely sell or distribute your"
- PRINT "BASIC programs without requiring the user of the program to own BASIC."
- PRINT "You may freely distribute a copy of MS BASIC Runtime (b) on"
- PRINT "your program disk so that someone who does not have a copy of the"
- PRINT "regular Microsoft BASIC (b) interpreter can run your program. You are not"
- PRINT "allowed to distribute regular Microsoft BASIC (b) on any any disk that"
- PRINT "you sell or give away, but you are allowed to distribute Runtime BASIC."
- PRINT " Runtime BASIC supports all BASIC features except the direct mode --"
- PRINT "Runtime BASIC cannot edit, save, or list programs, it can only run programs."
- PRINT "Programs must be saved in Compressed or Protected format to run in"
- PRINT "Runtime BASIC. As a consequence, the MERGE option of CHAIN is not"
- PRINT "supported. (If you double-click a program saved in TEXT format, "
- PRINT "Runtime BASIC will load but will immediately return to the Finder.)"
- PRINT " Also, when you stop a program, Runtime BASIC exits directly to the"
- PRINT "Finder. Because of this, the programmer may wish to trap user breaks with"
- PRINT "BREAK ON : ON BREAK GOSUB label."
- PRINT " <<Press any key to continue>>";
- WHILE INKEY$="" : WEND
- SYSTEM
-